![]() | webmaster Master Editor 2 years ago |
Create a User Editor where you want setup your point claimer.
Now past this code in User Editor's first box
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="1860">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
font: normal bold 16px/normal tahoma;
}
article {
width: 300px;
text-align: center;
background-color: #68b04d;
border-radius: 10px;
margin: 50px auto 20px;
padding: 5px;
overflow: hidden;
box-shadow: 3px 3px 10px #ccc;
}
article h3 {
padding: 10px;
color: #fff;
}
article .count {
padding: 5px;
}
article #timer{
padding: 5px;
color: crimson;
background-color: aliceblue;
border-radius: 2px;
}
#box {
display: none;
position:center;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<article class="clock" id="model3">
<h3></h3>
<div class="count">
<div id="timer"></div>
<center><div id="box">
<input type="hidden" name="point" value="50"/>
<button type="submit">claim 50 point</button></div>
</div></center>
</div>
</article>
</body>
</html>
<script>
const el = document.getElementById('box');
setTimeout(() => {
el.style.display = 'block';
}, 1800000); // đī¸ delay in milliseconds
</script>
<script>
var h3 = document.getElementsByTagName("h3");
h3[0].innerHTML = "Claim Point After 30 minute";
var sec = 1800,
countDiv = document.getElementById("timer"),
secpass,
countDown = setInterval(function () {
'use strict';
secpass();
}, 1000);
function secpass() {
'use strict';
var min = Math.floor(sec / 60),
remSec = sec % 60;
if (remSec < 10) {
remSec = '0' + remSec;
}
if (min < 10) {
min = '0' + min;
}
countDiv.innerHTML = min + ":" + remSec;
if (sec > 0) {
sec = sec - 1;
} else {
clearInterval(countDown);
countDiv.innerHTML = 'countdown done';
}
}
</script>
<username>#@%VAR(USER_NAME)%#</username><type>active</type><set_var_date>#@%POST(date)%#</set_var_date><set_var_point>#@%POST(point)%#</set_var_point>
Alert message goes here